home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _274D3087DF2344A1B6E48C2D2AB348B9 < prev    next >
Encoding:
Text File  |  2006-08-04  |  778 b   |  27 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_SeamlessTiling():
  13.     return {
  14.         'TilingMethod': App.Constants.TilingMethod.Corner, 
  15.         'Direction': App.Constants.Direction.Vertical, 
  16.         'Width': 51, 
  17.         'CornerStyle': App.Constants.CornerStyle.Linear, 
  18.         'HorizontalOffset': 0, 
  19.         'VerticalOffset': 90, 
  20.         'Transition': 100
  21.         }
  22.  
  23. def Do(Environment):
  24.     # Seamless Tiling
  25.     App.Do( Environment, 'SeamlessTiling',         Preset_SeamlessTiling())
  26.  
  27.